home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 037a / exec31.zip / DEUTSCH.BAT < prev    next >
DOS Batch File  |  1991-08-20  |  1KB  |  46 lines

  1. echo off
  2. if %1. == . goto help
  3. if exist %1con goto goon
  4. echo *** Zielpfad nicht gefunden!
  5. goto help
  6. :goon
  7. echo getlang d c  von exec.c        nach %1exec.c
  8. getlang d c <exec.c >%1exec.c
  9. if errorlevel 1 goto err
  10. echo getlang d p  von exec.pas      nach %1exec.pas
  11. getlang d p <exec.pas >%1exec.pas
  12. if errorlevel 1 goto err
  13. echo getlang d c  von exec.h        nach %1exec.h
  14. getlang d c <exec.h >%1exec.h
  15. if errorlevel 1 goto err
  16. echo getlang d a  von checkpat.asm  nach %1checkpat.asm
  17. getlang d a <checkpat.asm >%1checkpat.asm
  18. if errorlevel 1 goto err
  19. echo getlang d c  von checkpat.h    nach %1checkpat.h
  20. getlang d c <checkpat.h >%1checkpat.h
  21. if errorlevel 1 goto err
  22. echo getlang d p  von checkpat.pas  nach %1checkpat.pas
  23. getlang d p <checkpat.pas >%1checkpat.pas
  24. if errorlevel 1 goto err
  25. echo getlang d c  von extest.c      nach %1extest.c
  26. getlang d c <extest.c >%1extest.c
  27. if errorlevel 1 goto err
  28. echo getlang d p  von extest.pas    nach %1extest.pas
  29. getlang d p <extest.pas >%1extest.pas
  30. if errorlevel 1 goto err
  31. echo getlang d a  von spawn.asm     nach %1spawn.asm
  32. getlang d a <spawn.asm >%1spawn.asm
  33. if errorlevel 1 goto err
  34. echo getlang d c  von compat.h      nach %1compat.h
  35. getlang d c <compat.h >%1compat.h
  36. if errorlevel 1 goto err
  37. goto exit
  38. :err
  39. echo *** Fehler!
  40. :help
  41. echo Benutzung: Deutsch Ziel-Pfad
  42. echo  Kopiert die deutsche Version aller Quellen in den Ziel-Pfad.
  43. echo  Beispiel: deutsch d:\dt\
  44. :exit
  45.  
  46.